home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2004-023.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  81 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5. # The text of this plugin is (C) Red Hat Inc.
  6.  
  7. if ( ! defined_func("bn_random") ) exit(0);
  8. if(description)
  9. {
  10.  script_id(12453);
  11.  script_version ("$Revision: 1.3 $");
  12.  script_cve_id("CAN-2003-0935");
  13.  
  14.  name["english"] = "RHSA-2004-023: net";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = '
  19.  
  20.   Updated Net-SNMP packages are available to correct a security vulnerability
  21.   and other bugs.
  22.  
  23.   The Net-SNMP project includes various Simple Network Management Protocol
  24.   (SNMP) tools.
  25.  
  26.   A security issue in Net-SNMP versions before 5.0.9 could allow an existing
  27.   user/community to gain access to data in MIB objects that were explicitly
  28.   excluded from their view. The Common Vulnerabilities and Exposures project
  29.   (cve.mitre.org) has assigned the name CAN-2003-0935 to this issue.
  30.  
  31.   Users of Net-SNMP are advised to upgrade to these errata packages containing
  32.   Net-SNMP 5.0.9 which is not vulnerable to this issue. In addition,
  33.   Net-SNMP 5.0.9 fixes a number of other minor bugs.
  34.  
  35.  
  36.  
  37.  
  38. Solution : http://rhn.redhat.com/errata/RHSA-2004-023.html
  39. Risk factor : High';
  40.  
  41.  script_description(english:desc["english"]);
  42.  
  43.  summary["english"] = "Check for the version of the net packages";
  44.  script_summary(english:summary["english"]);
  45.  
  46.  script_category(ACT_GATHER_INFO);
  47.  
  48.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  49.  family["english"] = "Red Hat Local Security Checks";
  50.  script_family(english:family["english"]);
  51.  
  52.  script_dependencies("ssh_get_info.nasl");
  53.  
  54.  script_require_keys("Host/RedHat/rpm-list");
  55.  exit(0);
  56. }
  57.  
  58. include("rpm.inc");
  59. if ( rpm_check( reference:"net-snmp-5.0.9-2.30E.1", release:"RHEL3") )
  60. {
  61.  security_hole(0);
  62.  exit(0);
  63. }
  64. if ( rpm_check( reference:"net-snmp-devel-5.0.9-2.30E.1", release:"RHEL3") )
  65. {
  66.  security_hole(0);
  67.  exit(0);
  68. }
  69. if ( rpm_check( reference:"net-snmp-utils-5.0.9-2.30E.1", release:"RHEL3") )
  70. {
  71.  security_hole(0);
  72.  exit(0);
  73. }
  74.  
  75. if ( rpm_exists(rpm:"net-", release:"RHEL3") )
  76. {
  77.  set_kb_item(name:"CAN-2003-0935", value:TRUE);
  78. }
  79.  
  80. set_kb_item(name:"RHSA-2004-023", value:TRUE);
  81.